From cbc8a361c0dcba3d4617c28fb8196ec9eef1dc2d Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Fri, 25 Nov 2005 15:17:18 +0000 Subject: [PATCH] Fix stupid invalid syntax on network-attach tests. Signed-off-by: Murillo Fernandes Bernardes --- tools/xm-test/tests/network-attach/network_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/xm-test/tests/network-attach/network_utils.py b/tools/xm-test/tests/network-attach/network_utils.py index a1ccdf6ac4..16c521b43a 100644 --- a/tools/xm-test/tests/network-attach/network_utils.py +++ b/tools/xm-test/tests/network-attach/network_utils.py @@ -10,7 +10,7 @@ def count_eth(console): run = console.runCmd("ifconfig -a | grep eth") except ConsoleError, e: FAIL(str(e)) - return = len(run['output'].splitlines()) + return len(run['output'].splitlines()) def network_attach(domain_name, console): eths_before = count_eth(console) -- 2.30.2